home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / oolregex / regexdlg.h < prev    next >
C/C++ Source or Header  |  1995-12-07  |  1KB  |  48 lines

  1. // RegExdlg.h : header file
  2. //
  3. #include <afxcmn.h>
  4.  
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CRegExpTestDlg dialog
  7.  
  8. class CRegExpTestDlg : public CDialog
  9. {
  10. // Construction
  11. public:
  12.     void DisplayList();
  13.     CRegExpTestDlg(CWnd* pParent = NULL);    // standard constructor
  14.  
  15. // Dialog Data
  16.     //{{AFX_DATA(CRegExpTestDlg)
  17.     enum { IDD = IDD_REGEXPTEST_DIALOG };
  18.     CListCtrl    m_listTestInfo;
  19.     CString    m_string;
  20.     CString    m_regexp;
  21.     CString    m_res1;
  22.     CString    m_res2;
  23.     CString    m_res3;
  24.     //}}AFX_DATA
  25.  
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CRegExpTestDlg)
  28.     protected:
  29.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30.     //}}AFX_VIRTUAL
  31.  
  32. // Implementation
  33. protected:
  34.     HICON m_hIcon;
  35.  
  36.     // Generated message map functions
  37.     //{{AFX_MSG(CRegExpTestDlg)
  38.     virtual BOOL OnInitDialog();
  39.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  40.     afx_msg void OnDestroy();
  41.     afx_msg void OnPaint();
  42.     afx_msg HCURSOR OnQueryDragIcon();
  43.     afx_msg void OnButtonMatch();
  44.     afx_msg void OnButtonTest();
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.